跳到主要内容

3.1.2 与非门

这个三输入的NAND门不能正常工作。请修复其中的错误(或问题)。

你必须使用提供的五输入AND门模块:

模块定义如下:

module andgate ( output out, input a, input b, input c, input d, input e );

模块声明

module top_module (input a, input b, input c, output out);

做题区